home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / games2 / rotise12.zip / MAKEFILE.MSC < prev    next >
Text File  |  1992-04-03  |  1KB  |  54 lines

  1. # Makefile for Microsoft C
  2.  
  3. CC= cl
  4. LD= link
  5.  
  6. CFLAGS= -AL -I. -DUSE_PROTOS -DHAVE_STRICMP -DHAVE_STRSTR -D__ANSI__
  7. LDFLAGS= /NOI
  8.  
  9. DEST    = .                # Where to put executable
  10.  
  11. HDRS    = avl.h bb.h bb_pdb.h portab.h proto.h rdb.h \
  12.       rotise.h
  13. OBJS    = avl.obj bb_pdb.obj cmdtable.obj misc.obj \
  14.       rdb_play.obj realp.obj report.obj roster.obj rotise.obj \
  15.       standing.obj stenog.obj string.obj transact.obj getopt.obj
  16. PROGRAM    = rotise.exe
  17. SRCS    = avl.c bb_pdb.c cmdtable.c misc.c rdb_play.c \
  18.       realp.c report.c roster.c rotise.c standing.c stenog.c \
  19.       string.c transact.c
  20.  
  21.  
  22. # This is the only required target. It states that the PROGRAM depends
  23. # on all files listed in the OBJS and LIBS macros. The command for updating
  24. # the library is the line following the dependency line.
  25. #
  26. $(PROGRAM):     $(OBJS)
  27.         link $(LDFLAGS) @rotise.lnk
  28.  
  29. avl.obj: avl.h
  30.  
  31. bb_pdb.obj: avl.h bb.h bb_pdb.h portab.h rdb.h rotise.h
  32.  
  33. cmdtable.obj: bb_pdb.h portab.h rdb.h rotise.h
  34.  
  35. misc.obj: bb.h bb_pdb.h portab.h rdb.h rotise.h
  36.  
  37. rdb_play.obj: bb_pdb.h portab.h rdb.h rotise.h
  38.  
  39. realp.obj: bb_pdb.h portab.h rdb.h rotise.h
  40.  
  41. report.obj: bb_pdb.h portab.h rdb.h rotise.h
  42.  
  43. roster.obj: bb_pdb.h portab.h rdb.h rotise.h
  44.  
  45. rotise.obj: bb_pdb.h portab.h rdb.h rotise.h
  46.  
  47. standing.obj: bb_pdb.h portab.h rdb.h rotise.h
  48.  
  49. stenog.obj: bb_pdb.h portab.h rdb.h rotise.h
  50.  
  51. string.obj: bb_pdb.h portab.h rdb.h rotise.h
  52.  
  53. transact.obj: bb_pdb.h portab.h rdb.h rotise.h
  54.